home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 April / SGI IRIX 6.5 Applications 2004 April.iso / dist / mozilla.idb / var / netscape / mozilla / chrome / comm.jar.z / comm.jar / content / p3p / pageInfoOverlay.xul < prev   
Extensible Markup Language  |  2003-11-11  |  6KB  |  159 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is the Platform for Privacy Preferences.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Netscape Communications Corporation.
  19.    - Portions created by the Initial Developer are Copyright (C) 2002
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s): Samir Gehani <sgehani@netscape.com>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <!-- This file overlays "chrome://navigator/content/pageInfo.xul" -->
  39.  
  40. <!DOCTYPE overlay SYSTEM "chrome://p3p/locale/pageInfoOverlay.dtd">
  41.  
  42. <overlay id="p3pPageInfoOverlay"
  43.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  44.  
  45.   <script type="application/x-javascript" 
  46.           src="chrome://p3p/content/pageInfoOverlay.js"/>
  47.   <script src="chrome://communicator/content/p3p/nsPolicyViewer.js"/>
  48.  
  49.   <script type="application/x-javascript">
  50.     onLoadRegistry.push(initP3PTab);
  51.   </script>
  52.  
  53.   <tabs id="tabs">
  54.     <tab id="p3pTab" label="&pageInfo.p3pTab.label;"
  55.       accesskey="&pageInfo.p3pTab.accesskey;"/>
  56.   </tabs>
  57.  
  58.   <tabpanels id="tabpanels"> 
  59.     <tabpanel id="p3pPanel" flex="1" orient="vertical">
  60.       <label> &pageInfo.instruction; </label>
  61.  
  62.       <tree id="linkList" flex="1" seltype="multiple" 
  63.         hidecolumnpicker="true">
  64.         <treecols> 
  65.           <treecol id="linkTypes" label="&pageInfo.linkTypes;" flex="1" 
  66.             primary="true"/>
  67.         </treecols>
  68.  
  69.         <treechildren flex="1">
  70.           <treeitem container="true" open="true" id="outer">
  71.             <treerow>
  72.               <treecell id="mainLink" label=""/>
  73.             </treerow>
  74.             <treechildren id="linkTypekids">
  75.  
  76.               <treeitem container="true" id="links">
  77.                 <treerow>
  78.                   <treecell label="&pageInfo.type.links;"/>
  79.                 </treerow>
  80.                 <treechildren id="linkKids"/>
  81.               </treeitem>
  82.  
  83.               <treeitem container="true" id="applets">
  84.                 <treerow>
  85.                   <treecell label="&pageInfo.type.applets;"/>
  86.                 </treerow>
  87.                 <treechildren id="appletKids"/>
  88.               </treeitem>
  89.  
  90.               <treeitem container="true" id="imageMaps">
  91.                 <treerow>
  92.                   <treecell label="&pageInfo.type.imageMaps;"/>
  93.                 </treerow>
  94.                 <treechildren id="imageMapKids"/>
  95.               </treeitem>
  96.  
  97.               <treeitem container="true" id="forms">
  98.                 <treerow>
  99.                   <treecell label="&pageInfo.type.forms;"/>
  100.                 </treerow>
  101.                 <treechildren id="formKids"/>
  102.               </treeitem>
  103.  
  104.               <treeitem container="true" id="frames">
  105.                 <treerow>
  106.                   <treecell label="&pageInfo.type.frames;"/>
  107.                 </treerow>
  108.                 <treechildren id="frameKids"/>
  109.               </treeitem>
  110.  
  111.               <treeitem container="true" id="images">
  112.                 <treerow>
  113.                   <treecell label="&pageInfo.type.images;"/>
  114.                 </treerow>
  115.                 <treechildren id="imageKids"/>
  116.               </treeitem>
  117.  
  118.               <treeitem container="true" id="externalDocs">
  119.                 <treerow>
  120.                   <treecell label="&pageInfo.type.externalDocs;"/>
  121.                 </treerow>
  122.                 <treechildren id="externalDocKids"/>
  123.               </treeitem>
  124.  
  125.               <treeitem container="true" id="objects">
  126.                 <treerow>
  127.                   <treecell label="&pageInfo.type.objects;"/>
  128.                 </treerow>
  129.                 <treechildren id="objectKids"/>
  130.               </treeitem>
  131.  
  132.               <treeitem container="true" id="scripts">
  133.                 <treerow>
  134.                   <treecell label="&pageInfo.type.scripts;"/>
  135.                 </treerow>
  136.                 <treechildren id="scriptKids"/>
  137.               </treeitem>
  138.  
  139.             </treechildren>
  140.           </treeitem>
  141.         </treechildren> 
  142.       </tree>
  143.  
  144.       <hbox>
  145.         <button label="&pageInfo.humanReadable.label;" 
  146.           accesskey="&pageInfo.humanReadable.accesskey;"
  147.           oncommand="onHumanReadable();"/>
  148.         <button label="&pageInfo.machineReadable.label;" 
  149.           accesskey="&pageInfo.machineReadable.accesskey;"
  150.           oncommand="onMachineReadable();"/>
  151.         <button label="&pageInfo.optinoptout.label;" 
  152.           accesskey="&pageInfo.optinoptout.accesskey;"
  153.           oncommand="onOptInOptOut();"/>
  154.       </hbox>
  155.     </tabpanel>
  156.   </tabpanels>
  157. </overlay>
  158.  
  159.